Resources
Tutorials
Project
References
CSE
Blog


Click Here for the Updated List

#index

#Academic (UITS)

#Career

#Programming

#Study (Subjects)

#Study (Open-Source)

#Site-Posts

#Improvement

#CSE aux (offline access)

#CTF

#Game Dev

#Web Dev

#Research

#Language

(Create a Resource collection of your own. Follow this as a format if you wish.)



#Academic (UITS)


Website: ouits-res.netlify.app  https://b1tranger.github.io/oUITS-Resources/ 

Google Drive:

Telegram Group

Discord servers related to UITS

FB Study Group/Chat

Edu Mail: 24/7 open meet link:

Google Groups



#Career


#job

#courses

#interviews

#CV formats



#Programming


Competition Portal https://competition.binus.ac.id/portal/ 

For theory → https://thisvsthat.io/ 

#python

#references

#GitHub https://roadmap.sh/git-github 

#blogs

#UITS-Projects

#Tutorial

Facebook (people to follow for guides) + #Site-Posts

#YouTube

Contests

Problem Solving Sites

Extension for Contest Reminders

Discord Servers

GitBook

#cpp


 #Arduino

#Reference



#Study (Subjects)



#UITS

#HSC https://t.me/educationblog24_official 

# simulation and modeling note 27.02.25

- https://www.mathworks.com/help/matlab/index.html?s_tid=hc_panel

- Discrete Mathematics book for MATLAB

- MATLAB login rerquires edu mail but is causing issues with signup

#Database

Software → https://sourceforge.net/projects/xampp/ 

#DLD

#DSA

Understanding basic Asymptotic notation - https://www.youtube.com/watch?v=XMUe3zFhM5c
Detailed Asymptotic notation -  
https://www.youtube.com/watch?v=0oDAlMwTrLo 

#Discrete Math (Maple, Mathematica/Wolphram, MATLAB)

#ED

Final Drawing Related References.docx  (108) Missing Semester IAP 2020 - YouTube |

#Bangladesh Studies

#FEE

#Java

#Java GUI

#English

#SPL

C++

https://docs.google.com/document/d/1C8DqZLURaJQA-08mHEU-JkiybSL-THHJuvMbLWm6cjM/edit?usp=drivesdk 

C programming exercises: Recursion - w3resource

#Chemistry

#Physics

#math

Dr. Trefor Bazett - YouTube |




#BRACU

#sites

#links


#IUT


#BUET


#AIUB


#DIU


#UIU



#Study (Open-Source)


#resource sites

#Online-lab?

#github

#documentary

https://archive.org/details/TheArrivals2008SeriesEsub/TheArrivalsPt.01proofFromTheHolyQuran.mkv 

https://archive.org/details/TheArrivals2008SeriesEsub/TheArrivalsPt.01proofFromTheHolyQuran.mkv 

https://t.me/c/2287268057/228/260 



#Site-Posts


#Facebook

#Talha Chowdhury



#Improvement

#Zettlekasten (note taking method) (Hakim bhai mentioned)

#Listing-blood-donation-options

- https://play.google.com/store/apps/details?id=com.bloodbag.app&hl=en 

- https://www.bloodbag.app/d/622 

- https://www.facebook.com/bloodbagRequest 

- https://t.me/bloodbagTG 

-

- https://lifeline.bindu.health/ 



#CSE aux (offline access)

(update Escapism*apps*.docx afterward)

#good software for PC

#Database SQL

#calculator

#Offline_apps

#IDE:

#Reference:

#w3wchools (offline)

#Creator:


#Non GooglePlay (Open Source?)

#cse essentials (android)

#cse essentials (pc)


#Extensions



#CTF


#youtube

#facebook

#CSN Club, UITS

#online-tools (can be done with Linux)

For Crypto:

For Stegano

For Osint

#cypher type (need to memorise)

#flag format (finding flag → formatting the flag according to the given format → submit)

#Write up?

#practice

# linux

#about teams

#Osint?

#Linux

#networking (Wireshark software, built-in in Linux)



#Game Dev (+app)


Roadmaps to get started → https://roadmap.sh/ 

#Discord Servers


#flutter app dev

#tutorial

#doc


#Godot

#Doc

#Tutorial


#Unity

#Doc

#Tutorial


#blender

#Doc

#Tutorial


#Arduino



#Web Dev


Roadmaps to get started → https://roadmap.sh/ 

#Channels → Dani Krossing | web dev simplified, traversy media (Akib Reza) |

#database

#Stacks?

#CSS

7 ways to deal with CSS

Do You Really Need Bootstrap or Tailwind? “pure CSS is better than any framework” “Framework is just doing same work but faster”

#Color-pallets for web designers (Sajid Hasan) → https://colorhunt.co/ 

Check palette validity (Selim Reza) → https://www.realtimecolors.com/?colors=050315-fbfbfe-2f27ce-dedcff-433bff&fonts=Inter-Inter 

#JS
I built the same app 10 times // Which JS Framework is best?

 

#hosting

#GitHub refs / examples

#References / Tutorials

#PHP ( for the majority concerns, Check Security )

#UI/UX

#articles + GPT (about fixing some issues)

The z-index hierarchy adjustments also help maintain proper stacking order of your interface elements, making sure that active elements appear above others in the correct sequence.

This is a common issue in popup/modal interfaces and the CSS-based solution is often cleaner than trying to solve it entirely with JavaScript. By controlling the interactive areas with CSS, you've eliminated the "phantom clicks" problem without needing to modify your script logic.”

javascriptCopy// Create a file called shared-elements.js

document.addEventListener('DOMContentLoaded', function() {

  const navHTML = `

    <a class="active-1" href="https://github.com/b1tranger/oUITS-Resources/releases/download/test/_oUITSr_appsgeyser.apk"

    target="_blank"><small>web-app</small></a>

    <!-- Add other navigation links here -->

  `;

 

  // Insert the nav HTML into any element with class "navigation"

  document.querySelectorAll('.navigation').forEach(nav => {

    nav.innerHTML = navHTML;

  });

});

Then in each HTML page:

htmlCopy<div class="navigation"></div>

<script src="shared-elements.js"></script>

-webkit-tap-highlight-color: transparent;

-webkit-touch-callout: none;

 -webkit-user-select: none;

user-select: none;

.dropdown-header,

        .dropdown-item,

        .semester-button,

        #resetButton {

            -webkit-tap-highlight-color: transparent;

            -webkit-touch-callout: none;

            -webkit-user-select: none;

            -khtml-user-select: none;

            -moz-user-select: none;

            -ms-user-select: none;

            user-select: none;

        }

changes "view?" to "preview?"

transition: all 0.3s ease creates a smooth animation effect

transform: scale(1.05) makes the button slightly larger on hover

.menu-button:hover {

    transform: scale(1.05); /* Slightly enlarge the button */

    background-color: rgba(255, 255, 255, 0.2) !important; /* Lighten background on hover */

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */

}






#Research


#Quantum Computing
https://www.perplexity.ai/search/explain-how-qubits-work-Psqx48ERQ.Sz5fae4KP9Yw 

#AI AGI ASI ML



#Language


#arabic